home *** CD-ROM | disk | FTP | other *** search
- /*
- record.h
-
- Record interface.
-
- Copyright (c) 2000 Dug Song <dugsong@monkey.org>
-
- $Id: record.h,v 1.1 2000/05/16 17:31:15 dugsong Exp $
- */
-
- #ifndef RECORD_H
- #define RECORD_H
-
- int record_init(char *file);
-
- int record(u_long src, u_long dst, int proto, u_short sport, u_short dport,
- char *name, u_char *buf, int len);
-
- void record_dump(void);
-
- void record_close(void);
-
- #endif /* RECORD_H */
-
-